home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C ++ / Applications / Pict2Ascii 1.03 / Panes / CMemoryIndicator.h < prev   
Encoding:
Text File  |  1997-05-22  |  733 b   |  28 lines  |  [TEXT/CWIE]

  1. // =================================================================================
  2. //    CMemoryIndicator.h                            ©1997 BB's Team inc. All rights reserved
  3. // =================================================================================
  4.  
  5. #pragma once
  6.  
  7. #include "CGreyCaption.h"
  8. #include <LPeriodical.h>
  9.  
  10.  
  11. class CMemoryIndicator :    public CGreyCaption,
  12.                                     public LPeriodical    {
  13. public:
  14.     enum { class_ID = 'MemF' };
  15.  
  16.     /* ctor */                        CMemoryIndicator (LStream*);
  17.     static CMemoryIndicator*    CreateMemoryIndicatorStream (LStream *);
  18.             void                    SpendTime (void);
  19.  
  20. protected:
  21.     virtual void                    SpendTime (const EventRecord &);
  22.     virtual void                    FinishCreateSelf (void);
  23.  
  24. private:
  25.         Int32                            mFree;
  26.         LStr255                        mIntro;
  27. };
  28.